summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-06-16 06:08:53 +0200
committerGitHub <noreply@github.com>2023-06-16 06:08:53 +0200
commitc7fc5b934848bdb4c9ddb2fae84fa1967ce0b767 (patch)
tree8a95e596c58f2f6778f0f783039decb65bf13228
parentMerge pull request #10795 from german77/foomiibo (diff)
parentRe-enable SDL's CPUinfo subsystem (diff)
downloadyuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar
yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar.gz
yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar.bz2
yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar.lz
yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar.xz
yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.tar.zst
yuzu-c7fc5b934848bdb4c9ddb2fae84fa1967ce0b767.zip
-rw-r--r--externals/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index e48137080..7cce27d51 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -63,8 +63,9 @@ if (YUZU_USE_EXTERNAL_SDL2)
# Yuzu itself needs: Atomic Audio Events Joystick Haptic Sensor Threads Timers
# Since 2.0.18 Atomic+Threads required for HIDAPI/libusb (see https://github.com/libsdl-org/SDL/issues/5095)
# Yuzu-cmd also needs: Video (depends on Loadso/Dlopen)
+ # CPUinfo also required for SDL Audio, at least until 2.28.0 (see https://github.com/libsdl-org/SDL/issues/7809)
set(SDL_UNUSED_SUBSYSTEMS
- CPUinfo File Filesystem
+ File Filesystem
Locale Power Render)
foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS})
string(TOUPPER ${_SUB} _OPT)